home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / flilib.zip / FLISRC.ZIP / JTELL.C < prev    next >
C/C++ Source or Header  |  1989-11-10  |  124b  |  10 lines

  1.  
  2. #include "jlib.h"
  3.  
  4. /* return current file position  */
  5. long dos_tell (Jfile f)
  6. {
  7. return(dos_seek (f, 0L, 1) );
  8. }
  9.  
  10.